home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Adobe Graphics & Publishing SDK 1996 December
/
Adobe Graphics & Publishing SDK 1996 December.iso
/
pc
/
pm65sdk
/
sourcecode
/
pclframe
/
common
/
frameplugin.cpp
next >
Wrap
C/C++ Source or Header
|
1996-10-10
|
1KB
|
85 lines
/*
*--- FramePlugin.cpp ---------------------------------------------
* Copyright (c) 1996, Adobe Systems, Inc. All rights reserved.
*
*
*------------------------------------------------------------------
*/
#include <string.h>
#include "PMPlugin.h"
#include "CIWindow.h"
#include "CICommandsAndQueries.h"
#include "CIInterfaceManager.h"
#include "PMInterfaceIDs.h"
#include "PMCQErrs.h"
#include "FramePlugin.h"
#include "PCL.h"
/*---externals ---*/
extern PMMessage *gPMMessage;
extern sPMParamBlockPtr gPB;
/*
*--- ColorerPlugin ------------------------------------------------
* No special initialization needed.
*------------------------------------------------------------------
*/
FramePlugin::FramePlugin() : PPluginCall()
{
}
void FramePlugin::DoLoad()
{
}
void FramePlugin::DoInvoke() throw (PMErr)
{
}
void FramePlugin::DoUnload()
{
}
void FramePlugin::DoRegister()
{
}
void FramePlugin::DoPMEvent()
{
}
void FramePlugin::DoPMSysEvent()
{
}
void FramePlugin::DoAcquireInterface()
{
}
void FramePlugin::DoReleaseInterface()
{
}
void FramePlugin::DoCleanup()
{
}
void FramePlugin::DoShutdown()
{
}